home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / Sprocket Framework DR2 / Sprocket Starter / SprocketStarter Code / PreferencesDialogWindow.h < prev    next >
Text File  |  1996-05-30  |  510b  |  27 lines

  1. // Sprocket Framework header file
  2. // PreferencesDialogWindow.h
  3.  
  4. #ifndef        _PREFERENCESDIALOGWINDOW_
  5. #define        _PREFERENCESDIALOGWINDOW_
  6.  
  7. #ifndef        _DIALOGWINDOW_
  8. #include    "DialogWindow.h"
  9. #endif
  10.  
  11.  
  12. //    Information about the dialog ID we are using.
  13.  
  14. const DialogTemplateID    kPreferencesDialogTemplateID = 1024;
  15.  
  16.  
  17. class    TPreferencesDialogWindow    :    public TDialogWindow
  18.     {
  19. public:
  20.                         TPreferencesDialogWindow();
  21.  
  22.     virtual    void        AdjustMenusBeforeMenuSelection(void);
  23.     virtual    void        ItemHit(short theItem);
  24.     };
  25.  
  26. #endif
  27.